From: Glenn Morris Date: Fri, 22 Jan 2021 08:52:12 +0000 (+0000) Subject: * lisp/textmodes/remember.el (remember-text-format-function): Fix type. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~18^2~4409 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=6bfc672bc7f467edf39cfba262c5c4f11897d4e0;p=emacs.git * lisp/textmodes/remember.el (remember-text-format-function): Fix type. --- diff --git a/lisp/textmodes/remember.el b/lisp/textmodes/remember.el index 811a265118c..820ee38d101 100644 --- a/lisp/textmodes/remember.el +++ b/lisp/textmodes/remember.el @@ -415,7 +415,7 @@ The default emulates `current-time-string' for backward compatibility." "The function to format the remembered text. The function receives the remembered text as argument and should return the text to be remembered." - :type 'function + :type '(choice (const nil) function) :group 'remember :version "28.1")